---title: "TITLE"author: David Barnettdate: last-modifiedformat: htmlkeep-md: falsetheme: light: flatly dark: darklyembed-resources: truecode-block-border-left: truecode-block-bg: truetoc: truetoc-location: righttoc-depth: 4toc-expand: 3number-sections: truenumber-depth: 3fig-align: centerfig-dpi: 300fig-width: 7.5fig-height: 5fig-responsive: truecode-tools: truecode-fold: truecode-link: falselightbox: autocache: false---```{r}# load packages, do you need data packages?library(tidyverse) # do you really need the whole tidyverse?library(here)library(phyloseq)library(microViz)```## Introaims and preamble## Get data```{r}```## Formatting examples::: panel-tabset#### A```{r}plot(mtcars)```#### B```{r}plot(chickwts)```:::::: {.callout-note collapse="true"}### A collapsed callout```{r}#| code-fold: show# hello```:::## Quarto Info- <https://r4ds.hadley.nz/quarto>- Template created following instructions here:\<https://quarto.org/docs/extensions/starter-templates.html>- Learn more about controlling the appearance of HTML output here:\<https://quarto.org/docs/output-formats/html-basics.html>## Session info<details>```{r}#| code-fold: falsesessioninfo::session_info()```</details>